home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 25 / Cream of the Crop 25.iso / faq / preak.zip / FASTZIP.ZIP / Static.dem < prev    next >
Text File  |  1995-09-03  |  3KB  |  58 lines

  1. # Brute-force cracking with static characters  (SAMPLE PROFILE)
  2.  
  3. # !!!WARNING!!! all this stuff isn't properly tested, and may contain
  4. # bugs.
  5.  
  6. # Empty lines and lines beggining with a "#" are ignored.
  7. # SPACES are NOT stripped: if you accidently put a space at the end of the
  8. # password, it will be used as a valid character.
  9.  
  10. # Password definition: use "?" in place of "don't know" chars.
  11. # Up to 8.  Well.. you can use more than 8 "?", but up to 8 may be really
  12. # variable (I mean with a charset of more than 1 character).
  13.  
  14. PASSWORD=pas?w??d
  15.  
  16. ####################
  17. # If no variables "?" are used, FZC will try to find the password assuming
  18. # that it is close enough (ie: with typing errors) to the one you defined.
  19. # It searches for a maximum of 3 simultaneous errors: 1 missing char, 1
  20. # added or changed char and a permutation of up to 4 (consecutive) chars.
  21. # Example: PASSWORD=following  can find  oflowung
  22. #                   ^^^^^^^^^            ^^^^^^^^
  23. #                      ^^                   ^^
  24. #  that's what you tried to write  ...  and THAT's what you wrote!
  25. # The "PASSWORD=following" (or any other of length 9) example takes 4m 46s
  26. # on a 486DLC/40. On the same PC, length 10 is completed in 7m 15s and
  27. # length 12 in 14m 31s.
  28. # The minimum allowed password length for this method is 4 characters, and
  29. # FZC will ***NOT*** find shorter ones (ie: if you define PASSWORD=worm and
  30. # the real one is "wrm", it won't be found).
  31. # If you know the password is 4 or less chars, use brute-force instead.
  32. # Note: sometimes the same password is reported more than one time.
  33. # Suspend/resume and view the current try are **NOT** implemented... the PC
  34. # is freezed until the operation is completed.
  35. ####################
  36.  
  37. # Unknown chars definition: use one "?=xx..." for each "?" in PASSWORD,
  38. # where xx... is composed by:
  39. #         a     = all lowercase   (a..z)
  40. #         A     = all uppercase   (A..Z)
  41. #         1     = numbers         (0..9)
  42. #         !     = symbols         ( !"#$%&''()*+,-./:;<=>?@[\]^_`{|}~)
  43. #         #     = all the 251 possible chars (use alone or with @)
  44. #         %     = the " (double quote) character
  45. #         "abc" = the letters "a", "b" and "c"
  46. #         @     = empty char (ie: ab?de with ?="c"@ matches abcde and abde)
  47. #                 @ alone is not legal (ie: ?=@ will give an error)
  48. #
  49. #   Example:  ?=a"PWX "%1
  50. #   instructs FZC to use  lowercase+P+W+X+space+"+numbers  as the first "?"
  51. #
  52. # If a char of the password that you know is a REAL "?", you must set is as
  53. # unknown and then define it as ?="?"
  54.  
  55. ?=a"PWX "%1
  56. ?="oO0"
  57. ?="rR"!
  58.